home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-06-19 | 670 b | 21 lines |
- /*
- * MetaTable.java 1.0 12 Jan 1997
- *
- * Copyright (c) 1996 Krumel & Associates, Inc. All Rights Reserved.
- *
- * This software is provided as is. Krumel & Associates shall not be liable
- * for any damages suffered by licensee as a result of using, modifying or
- * distributing this software or its derivatives.
- */
-
- package symantec.itools.db.awt;
-
- public interface MetaTable {
- public void setupGrid(Grid v);
- public void setDbDataSource(DbDataSource ds);
- public boolean isDataEditable(int row, int col) throws DataNotAvailable;
- public Data[] arrangeForViewing(Data data[]);
- public void setupColumn(Grid view, int col);
- }
-
-